GET
/
1
/
domains
curl --request GET \
  --url https://crawler.algolia.com/api/1/domains \
  --header 'Authorization: Basic <encoded-value>'
{
  "itemsPerPage": 20,
  "page": 1,
  "total": 100,
  "items": [
    {
      "appId": "<string>",
      "domain": "wwww.algolia.com",
      "validated": true
    }
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Query Parameters

itemsPerPage
integer
default:20

Number of items per page to retrieve.

Required range: 1 <= x <= 100
page
integer
default:1

Page to retrieve.

Required range: 1 <= x <= 100
appID
string

Algolia application ID for filtering the API response.

Response

200
application/json

Domains

Pagination information.